testing.common.w (field)
38 uses
testing (current package)
benchmark.go#L237: fmt.Fprintf(b.w, "--- FAIL: %s\n%s", b.name, b.output)
benchmark.go#L252: fmt.Fprintf(b.w, "--- %s: %s\n%s", tag, b.name, b.output)
benchmark.go#L265: fmt.Fprintf(b.w, "goos: %s\n", runtime.GOOS)
benchmark.go#L266: fmt.Fprintf(b.w, "goarch: %s\n", runtime.GOARCH)
benchmark.go#L268: fmt.Fprintf(b.w, "pkg: %s\n", b.importPath)
benchmark.go#L271: fmt.Fprintf(b.w, "cpu: %s\n", cpu)
benchmark.go#L544: w: os.Stdout,
benchmark.go#L557: main.chatty = newChattyPrinter(main.w)
benchmark.go#L572: fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)
benchmark.go#L580: w: b.w,
benchmark.go#L594: fmt.Fprintf(b.w, "--- FAIL: %s\n%s", benchName, b.output)
benchmark.go#L599: fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)
benchmark.go#L604: fmt.Fprintln(b.w, results)
benchmark.go#L609: fmt.Fprintf(b.w, "--- BENCH: %s\n%s", benchName, b.output)
benchmark.go#L646: w: b.w,
benchmark.go#L818: w: discard{},
fuzz.go#L316: t.parent.w = captureOut
fuzz.go#L318: t.w = indenter{&t.common}
fuzz.go#L364: fmt.Fprintf(f.w, "%v\n", err)
fuzz.go#L367: fmt.Fprintf(f.w, "Failing input written to %s\n", crashPath)
fuzz.go#L369: fmt.Fprintf(f.w, "To re-run:\ngo test -run=%s/%s\n", f.name, testName)
fuzz.go#L401: run(f.w, e)
fuzz.go#L483: root := common{w: os.Stdout} // gather output in one place
fuzz.go#L485: root.chatty = newChattyPrinter(root.w)
fuzz.go#L514: f.w = indenter{&f.common}
fuzz.go#L542: root := common{w: os.Stdout}
fuzz.go#L544: root.w = io.Discard
fuzz.go#L550: root.chatty = newChattyPrinter(root.w)
fuzz.go#L585: f.w = indenter{&f.common}
testing.go#L492: w io.Writer // For flushToParent.
testing.go#L696: if c.chatty != nil && p.w == c.chatty.w {
testing.go#L710: fmt.Fprintf(p.w, format, args...)
testing.go#L1385: fmt.Fprintf(root.parent.w, "cleanup panicked with %v", r)
testing.go#L1476: t.w = indenter{&t.common}
testing.go#L1830: w: os.Stdout,
testing.go#L1835: t.chatty = newChattyPrinter(t.w)